home *** CD-ROM | disk | FTP | other *** search
- ;; emacs.mut
- ;; A few routines I don't put in init.mut that make ME more EMACS like.
- ;; C Durland Public Domain
-
- (defun set-fill-column
- {
- (int col)
-
- (col (if (arg-flag) (arg-prefix) (current-column)))
- (if (< col 10)
- (msg "Fill column too small.")
- (msg "Fill column set to " (word-wrap col))
- )
- })
-
-
- (defun
- MAIN
- {
- (bind-to-key "set-fill-column" "C-xf")
- }
- )
-